home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1999 Aladdin Enterprises. All rights reserved.
-
- This file is part of AFPL Ghostscript.
-
- AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
- distributor accepts any responsibility for the consequences of using it, or
- for whether it serves any particular purpose or works at all, unless he or
- she says so in writing. Refer to the Aladdin Free Public License (the
- "License") for full details.
-
- Every copy of AFPL Ghostscript must include a copy of the License, normally
- in a plain ASCII text file named PUBLIC. The License grants you the right
- to copy, modify and redistribute AFPL Ghostscript, but only under certain
- conditions described in the License. Among other things, the License
- requires that the copyright notice and this notice be preserved on all
- copies.
- */
-
- /*$Id: gscssub.h,v 1.2 2000/09/19 19:00:27 lpd Exp $ */
- /* Client interface to color space substitution */
-
- #ifndef gscssub_INCLUDED
- # define gscssub_INCLUDED
-
- #include "gscspace.h"
-
- /*
- * Color space substitution at the library level is similar to, but not
- * identical to, the operation of UseCIEColor in the PostScript language.
- * When the Boolean UseCIEColor parameter of the current device is false,
- * everything operates as normal. When UseCIEColor is true, the following
- * procedures may substitute another color space for the implied one:
- *
- * gs_setgray, gs_setrgbcolor, gs_sethsbcolor, gs_setcmykcolor
- * gs_current_Device{Gray,RGB,CMYK}_space
- *
- * Unlike the PostScript facility, the substitution *is* visible to
- * gs_currentcolorspace, and does *not* affect gs_setcolorspace, or the
- * ColorSpace members of images or shadings. However, the following
- * procedures recognize when substitution has occurred and return the
- * value(s) appropriate for the pre-substitution space:
- *
- * gs_currentgray, gs_currentrgbcolor, gs_currenthsbcolor,
- * gs_currentcmykcolor
- *
- * Thus gs_{current,set}{gray,{rgb,hsb,cmyk}color} are always mutually
- * consistent, concealing any substitution, and gs_{current,set}{colorspace}
- * are mutually consistent, reflecting any substitution.
- * gs_{current,set}color are consistent with the other color accessors,
- * since color space substitution doesn't affect color values.
- *
- * As in PostScript, color space substitutions are not affected by
- * (ordinary) grestore or by setgstate. Graphics states created by gsave or
- * gstate, or overwritten by currentgstate or copygstate, share
- * substitutions with the state from which they were copied.
- */
-
- /* If pcs is NULL, it means undo any substitution. */
- int gs_setsubstitutecolorspace(P3(gs_state *pgs, gs_color_space_index csi,
- const gs_color_space *pcs));
- const gs_color_space *
- gs_currentsubstitutecolorspace(P2(const gs_state *pgs,
- gs_color_space_index csi));
-
- /*
- * The following procedures are primarily for internal use, to provide
- * fast access to specific color spaces.
- */
- const gs_color_space *gs_current_DeviceGray_space(P1(const gs_state *pgs));
- const gs_color_space *gs_current_DeviceRGB_space(P1(const gs_state *pgs));
- const gs_color_space *gs_current_DeviceCMYK_space(P1(const gs_state *pgs));
-
- #endif /* gscssub_INCLUDED */
-